home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
UTILREEN
/
SLASERFN.LZH
/
MSWORD.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-08-29
|
867b
|
19 lines
echo off
cls
echo ┌───────────────────────────────────────────────────────────────────────┐
echo │ We are now ready to print a copy of the documentation for the MS Word │
echo │ / MS Works printer driver. Make sure your printer is on and ready to │
echo │ run. Then hit the return key to print instructions on how to install │
echo │ your printer driver. │
echo │ │
echo │ If you *don't* want to print anything hit the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └───────────────────────────────────────────────────────────────────────┘
if "%1"=="" goto bad
pause
copy word.doc %1:
goto done
:bad
echo Sorry, you need to pass a printer port as an argument
:done